Cancellations
If you want to cancel a shift, consequently removing it from Nursa marketplace you can use the Cancel shift endpoint
You can provide a comment and cancelationReason when canceling a shift, the available cancelationReason options are:
- Filled internally
 - Filled by other agency
 - Talent not needed
 
If you do not provide a cancelationReason the Talent not needed option will be used as a default value.
info
You can only cancel shifts that are in the following status:
Open
Viewed
Requested
Scheduled
InProgress
You can check the shift current status in the Get marketplace shifts endpoint.
| Parameter | Type | Description | 
|---|---|---|
| cancelationReason | string | General comment about the cancelation of the shift | 
| comment | string | Reason why the shift is being canceled | 
Example payload:
{
    "comment": "The shift was filled internally",
    "cancelationReason": "Filled internally"
}